home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_12 / 9n12111a < prev    next >
Encoding:
Text File  |  1995-11-01  |  237 b   |  17 lines

  1. /* LISTING 2 - OBJ.H */
  2.  
  3. #define MAXACTIONS 25
  4.  
  5. typedef struct circle_actions
  6.    {
  7.    int (*pactions[MAXACTIONS])();
  8.    } CIRCLE_ACTIONS;
  9.  
  10.  
  11. typedef struct circle
  12.    {
  13.    int color;
  14.    CIRCLE_ACTIONS *pcact;
  15.    } CIRCLE;
  16.  
  17.